home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- #ifndef PassWordH
- #define PassWordH
- //----------------------------------------------------------------------------
- #include <Buttons.hpp>
- #include <StdCtrls.hpp>
- #include <Controls.hpp>
- #include <Forms.hpp>
- #include <Graphics.hpp>
- #include <Classes.hpp>
- #include <SysUtils.hpp>
- #include <Windows.hpp>
- #include <System.hpp>
- //----------------------------------------------------------------------------
- class TPasswordDlg : public TForm
- {
- __published:
- TLabel *Label1;
- TEdit *Password;
- TButton *OKBtn;
- TButton *CancelBtn;
- private:
- public:
- virtual __fastcall TPasswordDlg(TComponent* AOwner);
- };
- //----------------------------------------------------------------------------
- extern PACKAGE TPasswordDlg *PasswordDlg;
- //----------------------------------------------------------------------------
- #endif
-